mirror of
https://github.com/cupcakearmy/old.nicco.io.git
synced 2024-11-01 00:24:16 +01:00
22 lines
439 B
YAML
22 lines
439 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
front:
|
|
build: .
|
|
restart: always
|
|
volumes:
|
|
- ./.next:/app/.next:ro
|
|
- ./public:/app/public:ro
|
|
- ./next.config.js:/app/next.config.js:ro
|
|
networks:
|
|
- traefik
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.port=3000
|
|
- traefik.docker.network=traefik
|
|
- traefik.backend=home
|
|
- traefik.frontend.rule=Host:nicco.io
|
|
|
|
networks:
|
|
traefik:
|
|
external: true |