ertagh / teamspeak3-server-arm

150 stars 11 forks source link

Is there a Compose File? #22

Closed ghost closed 2 years ago

ghost commented 2 years ago

Is it possible to use this with Portainer and install the Container about a Compose file?

Thank you :-).

ertagh commented 2 years ago

Hi there,

I'm actually using Portainer and docker-compose myself.. So I quickly modified my own compose file to match the run example shown in the readme.

Change to your liking! Hope that helped

version: '3'

services:
 teamspeak:
  container_name: TeamSpeak3_Server
  image: ertagh/teamspeak3-server:arm32v7-latest-box86
  environment:
   - TS_UPDATE=1
   - TIME_ZONE=Europe/Berlin
  ports:
   - "9987:9987/udp"
   - "10011:10011/tcp"
   - "30033:30033/tcp"
  volumes:
   - "{path}:/teamspeak/save/"

networks:
 default:
  external:
   name: bridged-network
ghost commented 2 years ago

Thank you, Ticket can be closed :-).