thomas-shop/dockercompose/docker-compose.yaml
2022-05-02 16:26:06 +02:00

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"