百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
S

Sendy-Docker

> 编程语言
开源

Docker 化的 sendy.co

200 stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Docker 化的 sendy.co

Instaling docker

Install docker

Sendy service

Send newsletters, 100x cheaper

Building the container

Once you have setup the project run:

bash
docker build -t sendy

Getting it running

To run apache in a background process, simply start the container using the following command:

bash

docker run -p 8080:80 -d sendy

-p 8080:80 publishes port 80 in the container to 8080 on the host machine. -d detaches from the process, use docker ps and docker stop to … stop.

Note: on OSX use docker-machine ip default to get the right IP to use (assuming default is your machine name). Sometimes you’ll want to debug issues with the container; maybe there are PHP configuration issues or you want to view error logs. To do that you can start the container in interactive mode and then start apache manually:

bash
docker run -i -t -p 8080:80 mysite /bin/bash
apachectl start

Making changes

If you’re actively developing you want to be able to change files in your usual editor and have them reflected within the container without having to rebuild it. The -v flag allows us to mount a directory from the host into the container:

bash
docker run -p 8080:80 -d -v /Users/dan/site:/var/www/site sendy

Tutorial article on medium

Maintenance & Development ccali14

Issues· 2 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

PHP

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月18日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言