Skip to content

Instantly share code, notes, and snippets.

View nbeck415's full-sized avatar

Natalie Lunbeck nbeck415

View GitHub Profile
@nbeck415
nbeck415 / docker-compose.yaml
Created October 3, 2023 20:03
This service enables Docker Compose Watch on the frontend for your fork of shipyard/react-flask-starter
version: '3'
services:
frontend:
labels:
shipyard.route: '/'
build: 'frontend'
env_file:
- frontend/frontend.env
develop:
@nbeck415
nbeck415 / build_and_push_docker_hub.yaml
Last active August 2, 2024 23:36
This GitHub Actions workflow builds a Docker image and pushes it a container registry every time someone commits to main.
name: Build and push to Docker Hub
on:
push:
branches:
- main
jobs:
push_to_docker_hub:
runs-on: ubuntu-latest
steps:
@nbeck415
nbeck415 / docker-compose.yaml
Created July 10, 2023 16:48
Compose file for react-wordle
version: '3.8'
services:
reactle:
build: docker
labels:
shipyard.route: '/'
ports:
- '3000:3000'
container_name: reactle-dev
volumes: