Created
August 25, 2019 14:58
-
-
Save chk1/dadab9985a2c983a8f12cb0ff232f28d to your computer and use it in GitHub Desktop.
docker-compose files for various services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
image: gitea/gitea:1 | |
volumes: | |
- ./data:/data | |
ports: | |
- "127.0.0.1:3000:3000" | |
- "3033:22" | |
restart: always |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
ts3: | |
ports: | |
- '9987:9987/udp' | |
- '127.0.0.1:10011:10011' | |
- '30033:30033' | |
environment: | |
- TS3SERVER_LICENSE=accept | |
volumes: | |
- '/srv/teamspeak:/var/ts3server/' | |
restart: unless-stopped | |
image: teamspeak | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
traccar: | |
restart: unless-stopped | |
container_name: traccar-server | |
volumes: | |
- '/srv/traccar/data:/opt/traccar/data' | |
ports: | |
- '5055:5055' | |
- '5093:5093' | |
- '127.0.0.1:8082:8082' | |
image: 'traccar/traccar:latest' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment