• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 1.X+ TFS Docker Image

strutZ

Australian OT Member {AKA Beastn}
Joined
Nov 16, 2014
Messages
1,391
Solutions
7
Reaction score
550
Hey guys,

Just wondering if anyone has successfully setup the TFS docker image? If so would you mind sharing with me your docker compose.yml OR your build command?

Code:
  tfs:
    image: otland/forgottenserver
    container_name: tfs
    restart: unless-stopped
    links:
      - mariadb
    networks:
      - net
    ports:
      - 7171:7171
      - 7272:7272
    volumes:
      - /srv/docker/servers/tfs:/srv/data/

  mariadb:
    image: mariadb
    container_name: Mariadb
    restart: unless-stopped
    volumes:
      - /srv/docker/servers/mariadb:/var/lib/mysql
    environment:
      MYSQL_ROOT_PASSWORD: mariadb
Thanks in advance

Current Docker-compose.yml
 
Last edited:
Back
Top