yarn install
yarn build
yarn start
version: "2"
services:
natant-games:
restart: unless-stopped
image: "ghcr.io/natant-network/natant-games:main"
ports:
#IMPORTANT: DO NOT CHANGE 3000 ONLY CHANGE THE NUMBER BEFORE THE COLON
- your port here:3000
# network config if youi want a network config feel free to use the one below and change the name to your liking. YOU MUST RUN docker network create <your name> BEFORE RUNNING THE CONTAINER
#networks:
# default:
# external:
# name: default
Or alternatively you can curl the docker compose file from the repositorycurl -o docker-compose.yml https://github.com/Natant-Network/Natant-Games/raw/main/docker-compose.yml
docker-compose up -d
to start the containerdocker-compose down
to stop the containerUsing the Dockerfile
docker build -t natant-games .
docker run -d -p your port here:3000 natant-games
yarn dev
to start the website in development modeThis project is licensed under the GPL-3.0 License - see the LICENSE file for details