19 lines
431 B
YAML
19 lines
431 B
YAML
version: '3.0'
|
|
services:
|
|
alex:
|
|
image: dregistry.baskloosterman.nl:5000/thomasshop
|
|
container_name: thomasshop
|
|
restart: always
|
|
volumes:
|
|
- "./thomas/data:/data"
|
|
- "./thomas/dist:/outdist"
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: nginx_thomas
|
|
restart: always
|
|
volumes:
|
|
- "./thomas/nginx:/etc/nginx/conf.d"
|
|
- "./thomas/dist:/var/www/thomas/dist"
|
|
ports:
|
|
- "3999:80"
|