We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c6e072 commit 0621f3eCopy full SHA for 0621f3e
1 file changed
services/xwiki/compose.yml
@@ -47,16 +47,17 @@ services:
47
start_period: 10s # Time to wait before starting health checks
48
restart: always
49
50
+# ${SERVICE}
51
application:
- image: ${IMAGE_URL}
52
- network_mode: service:tailscale
53
- container_name: app-${SERVICE}
+ image: ${IMAGE_URL} # Image to be used
+ network_mode: service:tailscale # Sidecar configuration to route ${SERVICE} through Tailscale
54
+ container_name: app-${SERVICE} # Name for local container management
55
depends_on:
56
tailscale:
57
condition: service_healthy
58
db:
59
condition: service_started
- environment:
60
+ environment: # Varibles are delared in .env file.
61
- XWIKI_VERSION=${XWIKI_VERSION}
62
- DB_USER=${DB_USER}
63
- DB_PASSWORD=${DB_PASSWORD}
0 commit comments