Added devcontainer

pull/18/head
HelixOW 6 months ago
parent 4cc2d3431c
commit 79eaeca103

@ -0,0 +1,24 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
"name": "Go",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"dockerComposeFile": "./docker-compose.devcontainer.yaml",
"service": "dev",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}"
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "go version",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

@ -0,0 +1,24 @@
services:
dev:
image: mcr.microsoft.com/devcontainers/go:1.22
container_name: pokerogue-devcontainer-code
volumes:
- ../..:/workspaces:cached
network_mode: service:db
command: sleep infinity
depends_on:
- db
db:
image: mariadb:11
container_name: pokerogue-devcontainer-db
restart: on-failure
environment:
MYSQL_ROOT_PASSWORD: admin
MYSQL_DATABASE: pokeroguedb
MYSQL_USER: pokerogue
MYSQL_PASSWORD: pokerogue
ports:
- '3306:3306'
volumes:
- ../.data/db:/var/lib/mysql

@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly

@ -0,0 +1,3 @@
# bin/bash
go build -o rogueserver
./rogueserver --debug --dbuser pokerogue --dbpass pokerogue &
Loading…
Cancel
Save