Blog

  • Hello again, world!

    After a some extended downtime I finally feel confident enough spinning up Docker and getting some kind of website back up and running on this domain.

    I used to use this space to document all the things I was learning day to day from ‘stuffing around on the internet’ and I may continue in that place.

    For now, here’s the compose.yaml which brings you this site. That means this post is officially documentation. For now, that’s a win.

    services:
      wordpress:
        image: wordpress:latest
        depends_on:
          - db
        env_file: .env
        volumes:
          - ./wordpress_data:/var/www/html
        networks:
          - wordpress_network
          - reverseproxy
    
      db:
        image: mysql:5.7
        env_file: .env
        volumes:
          - ./db_data:/var/lib/mysql
        networks:
          - wordpress_network
    
    networks:
      wordpress_network:
      reverseproxy:
        external: true
        name: npm-network