test docker-compose
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-12-28 21:54:20 +01:00
parent d97e329f4c
commit 0e18750370
2 changed files with 53 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3'
services:
peroxy-site:
build:
context: .
dommand: start
labels:
- "traefik.enable=true"
- "traefik.http.routers.peroxy-site.entrypoints=https"
- "traefik.http.routers.peroxy-site.rule=Host(`peroxy.dev`)"
- "traefik.http.routers.peroxy-site.tls=true"
- "traefik.http.routers.peroxy-site.tls.certresolver=http"
- "traefik.http.routers.peroxy-site.service=peroxy-site"
- "traefik.http.routers.peroxy-site.loadbalancer.server.port=3000"
- "traefik.docker.network=proxy"
networks:
- proxy
networks:
proxy:
external: true