Fix port mapping due to YAML interpreting numbers with a colon as base 60 numbers
This commit is contained in:
parent
7bc4235fd3
commit
b5be87961a
@ -98,8 +98,8 @@
|
|||||||
name: gitea
|
name: gitea
|
||||||
image: docker.io/gitea/gitea:latest
|
image: docker.io/gitea/gitea:latest
|
||||||
state: present
|
state: present
|
||||||
ports:
|
publish:
|
||||||
- 22:22
|
- "22:22"
|
||||||
network:
|
network:
|
||||||
- traefik-gitea
|
- traefik-gitea
|
||||||
- mariadb-gitea
|
- mariadb-gitea
|
||||||
|
@ -94,9 +94,9 @@
|
|||||||
name: traefik
|
name: traefik
|
||||||
image: docker.io/traefik:latest
|
image: docker.io/traefik:latest
|
||||||
state: present
|
state: present
|
||||||
ports:
|
publish:
|
||||||
- 80:80
|
- "80:80"
|
||||||
- 443:443
|
- "443:443"
|
||||||
security_opt:
|
security_opt:
|
||||||
- label=type:container_runtime_t
|
- label=type:container_runtime_t
|
||||||
volume:
|
volume:
|
||||||
|
Loading…
Reference in New Issue
Block a user